Declarations of new types: Structures
Pascal         C/C++
   typedef struct
   {
     int id;
     char name[11];
     float gpa;
   } student;
   student someone;